home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / Tool Chest / QuickDraw / Virtual Sphere 1.0.1 / Virtual Sphere Sample Code 1.1 / SampleAdditional.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-25  |  1.0 KB  |  38 lines  |  [TEXT/MPS ]

  1. /*•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••
  2. /* SampleAdditional.c
  3. /*
  4. /* This file contains routines to replace the standard ones in Sample.c
  5. /*
  6. /* Author: Michael Chen, Human Interface Group / ATG
  7. /* Copyright © 1991-1993 Apple Computer, Inc.  All rights reserved.
  8. /*
  9. /* Part of Virtual Sphere Sample Code Release v1.1
  10. /*•••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••*/
  11.  
  12. #ifndef    __SAMPLEADDITIONAL__
  13. #define __SAMPLEADDITIONAL__
  14.  
  15. #ifndef __GLOBALS__
  16. #include "Globals.h"
  17. #endif
  18.  
  19. #ifndef    __EVENTS__
  20. #include <Events.h>
  21. #endif
  22.  
  23. #ifndef    __WINDOWS__
  24. #include <Windows.h>
  25. #endif
  26.  
  27. void    Initialize3D (WindowPtr window);
  28. void    CleanUp3D (void);
  29.  
  30. void    CheckSystemConfiguration (void);
  31. void    AdjustAdditionalMenus (void);
  32. void    DoAdditionalMenuCommand (long menuResult);
  33. void    DoContentClick (WindowPtr window, EventRecord *event);
  34. void     DrawWindow (WindowPtr window);
  35. void    UpdateWindow (WindowPtr window);
  36.  
  37. #endif __SAMPLEADDITIONAL__
  38.